body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  background-color: rgb(255, 255, 255);
}

* {
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

nav {
  width: 100%;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.social-call {
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(170, 170, 170);
}

.social a {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
}

.phone {
  color: rgba(0, 0, 0, 0.7);
  margin-left: 30px;
  font-size: 0.9rem;
}

.social a:hover {
  margin: 0;
  color: crimson;
  transition: all ease 0.4s;
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 45px;
}

.logo img {
  height: 30px;
}

.menu {
  display: flex;
}

.menu li {
  position: relative;
  margin: 20px;
  display: flex;
  text-transform: uppercase;
  font-weight: 500;
}

.menu li a {
  color: #555;
}

.right-menu a {
  margin: 0 10px;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
}

.menu a:hover,
.right-menu a:hover,
.search-cancel:hover,
.form-cancel:hover {
  color: #0b9d8a;
  transition: all ease 0.4s;
}

.sale-lable {
  width: 38px;
  height: 17px;
  background-color: crimson;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  position: absolute;
  top: -20px;
  right: -20px;
}

.sale-lable::after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 5px solid transparent;
  border-left: 3px solid transparent;
  border-top: 7px solid crimson;
  border-right: 5px solid transparent;
  position: absolute;
  left: 10%;
  top: 100%;
}

.fa-shopping-cart {
  position: relative;
}
.num-cart-product {
  position: absolute;
  top: -17px;
  right: -17px;
  width: 25px;
  height: 25px;
  font-size: 0.8rem;
  border-radius: 50%;
  background-color: turquoise;
  color: bisque;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}

.search-bar {
  width: 100%;
  height: 300px;
  background-color: #fff;
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  box-shadow: 2px -5px 30px rgba(0, 0, 0, 0.1);
  z-index: 101;
  animation: search 0.3s;
}

.search-input {
  width: 90%;
  border-bottom: 2px solid #555;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-top: 20px;
}

.search-bar input {
  width: 100%;
  padding: 30px;
  border: none;
  outline: none;
  font-size: 2rem;
  margin: 20px;
  padding: 0 20px;
}

.search-cancel {
  color: #272727;
  font-size: 2rem;
  padding-left: 40px;
}

.search-bar {
  display: none;
}
.search-bar-active {
  display: flex;
}

@keyframes search {
  0% {
    bottom: -300px;
  }
  100% {
    bottom: 0px;
  }
}

.form {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 102;
}

.login-form,
.sign-up-form {
  width: 420px;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  position: relative;
}

.login-form form,
.sign-up-form form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.login-form strong,
.sign-up-form strong {
  color: #272727;
  font-size: 2rem;
  margin: 2px 7px 7px 7px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.login-form input,
.sign-up-form input {
  width: 90%;
  height: 45px;
  margin: 6px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  border-radius: 7px;
}

.login-form input::placeholder,
.sign-up-form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.login-form input[type="submit"],
.sign-up-form input[type="submit"] {
  background-color: rgb(15, 24, 23);
  color: #fff;
  border: none;
  outline: none;
  text-transform: uppercase;
  margin-top: 10px;
  border-radius: 3px;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}

.form-btns {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.form-btns a {
  color: #d44e4e;
  font-size: 0.9rem;
}

.sign-up-btn {
  border-bottom: 1px solid #868686;
  line-height: 16px;
}

.form-cancel {
  position: absolute;
  right: 20px;
  top: 10px;
  color: rgb(122, 120, 120);
}
.form-cancel:hover {
  transform: rotate(360deg);
}

.login-form,
.sign-up-form,
.form {
  display: none;
}

.login-active,
.login-active .login-form {
  display: flex;
  animation: fade 0.4s;
}
.sign-up-active,
.sign-up-active .sign-up-form {
  display: flex;
  animation: fade 0.4s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.full-slider-box,
.banner-box {
  width: 100%;
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.f-slide-1 {
  background-image: url(images/Slider_01.png);
}
.f-slide-2 {
  background-image: url(images/Slider_02.png);
}
.f-slide-3 {
  background-image: url(images/Slider_03.png);
}

.slider-text-container,
.banner-text-container {
  width: 80%;
  height: 90%;
  display: flex;
  align-items: center;
}

.f-slider-text,
.banner-text {
  display: flex;
  flex-direction: column;
  margin-right: auto;
}
.f-slide-2 .f-slider-text span,
.f-slide-3 .f-slider-text span {
  color: #949393;
}
.f-slide-2 .f-slider-text strong,
.f-slide-3 .f-slider-text strong {
  color: #f3f3f3;
}
.f-slider-text strong,
.banner-text strong {
  color: #333333;
  font-size: 3rem;
  line-height: 55px;
  letter-spacing: 1px;
}

.f-slider-text span,
.banner-text span {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 600;
  color: #666666;
  font-size: 1.2rem;
}

.f-slider-btn,
.banner-btn {
  width: 170px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #0b9d8a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 14px;
  border-radius: 5px;
}

.f-slider-text strong font,
.banner-text strong font {
  color: #0b9d8a;
}

/* featured heading */

.feature-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-heading h2,
.arrival-heading strong {
  font-size: 1.5rem;
  color: #dadada;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 40px;
  padding: 5px 30px;
  border: 1px solid #e0e0e0;
  background: #222;
}

.feature-box {
  width: 155px;
  height: 155px;
  margin: 0 20px;
  border-radius: 10px;
  overflow: hidden;
}
.feature-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.item span {
  font-size: 1rem;
  font-weight: 600;
  margin: 5px;
  color: #444;
}

.item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#autoWidth {
  display: flex;
  justify-content: center !important;
  margin: 10px auto 40px auto;
}

.arrival-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.arrival-heading strong {
  color: #fff;
  background-color: #202020;
  font-weight: 500;
}

.arrival-heading p {
  color: #808080;
  margin: 10px;
  font-size: 0.9rem;
}

.product-container {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.product-box {
  display: flex;
  flex-grow: 0.5;
  flex-direction: column;
  align-items: center;
  border: 1px solid #f7f7f7;
  border-radius: 10px;
}

.product-img {
  width: 200px;
  height: 210px;
  margin: 20px;
  cursor: pointer;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  border-top: 1ps solid #f3f3f3;
}

.p-name {
  color: #727272;
}
.p-price {
  color: #333333;
  font-size: 1.2rem;
  font-weight: 400;
}

.product-box:hover {
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}

.add-cart {
  position: absolute;
  width: -20px;
  top: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #0b9d8a;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
  display: none;
  animation: fade 0.3s;
}

.add-cart:hover {
  background-color: crimson;
  transition: all ease 0.4s;
}

.product-box:hover .add-cart {
  display: flex;
}

.new-arrival {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sale {
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 1uto;
}

.sale-box {
  width: 280px;
  border-radius: 20px;
  margin: 20px;
  position: relative;
  flex-grow: 0.5;
}

.sale-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.sale-text {
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translate(-20%, -50%);
  display: flex;
  flex-direction: column;
  /* text-decoration: none; */
  /* box-shadow: 2px 2px 30px rgb(182, 69, 69); */
  color: rgb(255, 255, 255);
}

.sale-text strong {
  font-size: 1.2rem;
  font-weight: 500;
  width: 90%;
  line-height: 23px;
  font-weight: bold;
  color: rgb(0, 0, 0);
}

.banner-box {
  height: 40vh;
  margin: 20px 0;
}

.services {
  display: flex;
  width: 90%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: auto;
}

.services-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 250px;
  padding: 20px;
  margin: 15px;
  flex-grow: 0.7;
}

.services-box i {
  color: #0b9d8a;
  font-size: 2rem;
  margin: 15px;
}

.services-box span {
  color: #222;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

.services-box p {
  color: #878787;
  margin: 0;
  font-size: 0.9rem;
}

footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  margin-top: 20px;
}

.copyright {
  font-size: 0.9rem;
  color: #4e4e4e;
  letter-spacing: 1px;
}

.subscribe input {
  width: 240px;
  height: 43px;
  padding: 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.05);
}

.subscribe input[type="submit"] {
  width: 120px;
  background-color: #0b9d8a;
  color: #fff;
  margin: 0 5px;
}

.fix-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.05);
  z-index: 102;
}

/* RESPONSIVE STYLE */
.toggle {
  display: none;
}
@media (max-width: 1010px) {
  nav {
    position: relative;
  }
  .navigation {
    height: 80px;
  }
  .fix-nav {
    height: 80px;
  }
  .menu {
    position: absolute;
    top: 110px;
    left: 0;
    background-color: #fff;
    border-bottom: 4px solid #0b9d8a;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 102;
    flex-direction: column;
    display: none;
  }
  .fix-nav .menu {
    top: 80px;
  }
  .menu li {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .navigation .menu li a {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 25px;
    border: 1px solid rgba(126, 29, 29, 0.05);
  }
  .sale-lable {
    display: none;
  }
  .toggle {
    display: block;
  }
  .toggle::before {
    content: "\f036";
    font-family: FontAwesome;
    line-height: 30px;
    z-index: 1;
    cursor: pointer;
  }
  .toggle.active::before {
    content: "\f00d";
  }
  .navigation.active .menu {
    display: block;
  }
  .full-slider-box,
  .banner-box {
    height: 45vh;
  }
  .full-slider-text span,
  .banner-text span {
    font-size: 0.9rem;
  }
  .full-slider-text strong,
  .banner-text strong {
    font-size: 2rem;
    line-height: 40px;
  }
  .search-input {
    height: 60px;
  }
  .search-input input,
  .search-cancel {
    font-size: 1.4rem;
  }
  .sale-box {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .navigation {
    padding: 10px 10px;
  }
  .f-slider-text strong,
  .banner-text strong {
    font-size: 1.2rem;
    line-height: 25px;
  }
  .full-slider-box,
  .banner-box {
    height: 30vh;
  }
  .full-slider-text span,
  .banner-text span {
    font-size: 0.8rem;
  }
  .f-slider-btn,
  .banner-btn {
    width: 120px;
    height: 30px;
    font-size: 0.8rem;
  }
  .feature-heading {
    font-size: 1.2rem;
  }

  .feature-box {
    width: 120px;
    height: 120px;
  }
  .new-arrival strong,
  .feature-heading strong {
    font-size: 1.2rem;
  }
  .new-arrival p,
  .feature-heading p {
    font-size: 0.8rem;
    text-align: center;
  }
  .sale-box {
    width: 100%;
    height: 180px;
  }
  .sale {
    width: 100%;
  }
  .services {
    width: 100%;
  }
  .services-box {
    width: 100%;
  }
  .copyright {
    margin: 20px 0;
    text-align: center;
  }
  .subscribe {
    width: 100%;
  }
  .subscribe form {
    flex-wrap: nowrap;
    display: flex;
    width: 100%;
  }
  .subscribe input {
    width: 100%;
    flex-grow: 1;
  }
  .login-form,
  .sign-up-form {
    width: 90%;
  }
}
